Skip to content

feat: add support for blue/green deployments #911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 55 commits into from
Jul 25, 2025
Merged

feat: add support for blue/green deployments #911

merged 55 commits into from
Jul 25, 2025

Conversation

aaron-congo
Copy link
Contributor

Description

Adds support for Blue/Green Deployments for the following DB types:

  • Aurora Mysql cluster
  • Aurora Postgres cluster
  • RDS Mysql Multi-AZ Instance
  • RDS Postgres Multi-AZ Instance

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

logger.debug(
Messages.get_formatted(
"SuspendConnectRouting.SwitchoverCompleteContinueWithConnect",
(time.time() - start_time_sec) // 1000))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
(time.time() - start_time_sec) // 1000))
(time.time() - start_time_sec) * 1000))

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we track the time using ms or ns instead of seconds for more detailed time reporting?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

time.time() returns a floating point that includes fractions of a second, for example if I run time.time() on my machine I get 1752773235.3210173, so I believe we will still get ms precision

@aaron-congo aaron-congo merged commit 9a1a4d9 into main Jul 25, 2025
13 of 14 checks passed
@aaron-congo aaron-congo deleted the bg branch July 25, 2025 21:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants